home *** CD-ROM | disk | FTP | other *** search
/ L' Effet Pommier 3 / L'Effet Pommier - Volume 03.iso / Graphismes / 3D / POV-Ray 3.0B5a PPC / POV-Ray 3.0B5a / POVSCN.Scenes / POV3DEMO / OTHER / SWITCH2.POV < prev    next >
Text File  |  1995-11-08  |  696b  |  39 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // Demonstrates #switch and #case directives
  3. //
  4. // If +k0 or +k2 you get red pigment
  5. // If +k1 or +k3 you get green pigment.
  6. // If any other clock value is used, you get blue pigment.
  7.  
  8. #version 3.0
  9. global_settings { assumed_gamma 2.2 }
  10.  
  11. #include "colors.inc"
  12.  
  13. camera {
  14.    location  <0, 20,-100>
  15. }
  16.  
  17. plane { y, -10
  18.    pigment {White}
  19.    finish {ambient 0.2 diffuse 0.8}
  20. }
  21.  
  22. sphere { <0, 25, 0>, 40
  23.    #switch (clock)
  24.      #case (0)
  25.      #case (2)
  26.        pigment {Red}
  27.        #break
  28.      #case (1)
  29.      #case (3)
  30.        pigment {Green}
  31.        #break
  32.      #else
  33.        pigment {Blue}
  34.    #end
  35. }
  36.  
  37. light_source {<100, 120, -200> colour White}
  38.  
  39.